home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
programming
/
arexx
/
rxcmanager
/
examples
/
get.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-05-25
|
285b
|
20 lines
/* */
l="rxcmanager.library";if ~show("L",l) then;if ~addlib(l,0,-30) then exit
call CMStart()
num = CMGetEntry("ALL MULTISELECT","U")
call CMClose()
if num=0 then do
say "No user entry selected"
exit
end
say "Selected:" num
do i=0 to num-1
say
say "Name: " u.i.Name
say
end